home *** CD-ROM | disk | FTP | other *** search
- *
- * Z e i c h e n a n p a s s u n g s t a b e l l e
- * (fuer Star NL-10)
- *
- * Lexikalische Analyse
- *
- * '*' Kommentar bis zum 'Return'
- * '\' + 'Return' Fortsetzungszeile ('Return' wird ignoriert)
- * ' ' trennt Symbole; wird ueberlesen
- *
- * Syntaktische Symbole : Hexadezimalzahl, Komma (','), 'Return'
- *
- * Quelltext := { Line }
- * Line := [ Hex { [','] Hex } ] 'Return'
- *
- * Wirkung : Die 1.Hex-Zahl in 'Line' wird beim Ausdrucken durch
- * die nachfolgenden Hex-Zahlen ersetzt.
-
- 10 30 * normal digits
- 11 31
- 12 32
- 13 33
- 14 34
- 15 35
- 16 36
- 17 37
- 18 38
- 19 39
-
- 23 1B 52 00 23 * # from USA fount
- 24 1B 52 00 24 * $ from USA fount
- 40 1B 52 00 40 * @ from USA fount
- 5B 1B 52 00 5B * [ from USA fount
- 5C 1B 52 00 5C * \ from USA fount
- 5D 1B 52 00 5D * ] from USA fount
- 5E 1B 52 00 5E * ^ from USA fount
- 60 1B 52 00 60 * ' from USA fount
- 7B 1B 52 00 7B * { from USA fount
- 7C 1B 52 00 7C * | from USA fount
- 7D 1B 52 00 7D * } from USA fount
- 7E 1B 52 00 7E * ~ from USA fount
- 9E E1 * ~ from Greek fount
- DD 1B 52 02 40 * § from German fount
- DF EC * ∞ Infinity
-